home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
00
/
5
/
DISK0050.ZIP
/
ROFF3.C
< prev
next >
Wrap
Text File
|
1982-09-01
|
302b
|
19 lines
#include "stdio.h"
#include "ctype.h"
#include "roff.he"
/* extras needed by roff */
movwrd(in,out)
char *in, *out;
{
char *tmp;
tmp = out;
if(! *in) { *out = '\0' ; return(0) ; }
while (*in && !isspace(*out = *in))
{ out++; in++; }
*out = '\0';
return( out != tmp );
}